@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap");

:root {
  --primary: #3b3c3d;
  --accent: #f9b900;
  --highlight: #e46428;
  --dark: #3b3c3d;
  --white: #fcfcfc;
  --light-gray: #f5f6fa;
  --jyp-orange: #f37021;
  --jyp-yellow: #ffc20e;
  --jyp-text: #333333;
  --line-color: #d1d1d1;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: var(--white);
  color: var(--primary);
  overflow-x: hidden;
}

body:lang(hi) {
  letter-spacing: normal;
}

html {
  scroll-behavior: smooth;
}

.navbar-menu .nav-link:not(.btn-apply) {
  font-weight: 600 !important;
}

#apply {
  scroll-margin-top: 120px;
}

@supports (-webkit-touch-callout: none) {
  body {
    font-family:
      -apple-system, BlinkMacSystemFont, "Segoe UI", "Kohinoor Devanagari",
      "Hind", Arial, sans-serif;
    padding-top: 110px;
  }
}

/* Navigation Styling */
/* Container setup */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Desktop Navbar Menu */
.navbar-menu {
  display: flex;
  align-items: center;
  flex-grow: 1;
  justify-content: center;
}

/* Horizontal Menu for Desktop */
.navbar-nav {
  display: flex;
  flex-direction: row;
  /* fixes vertical stacking */
  align-items: center;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

a .nav-link {
  font-size: 12px !important;
  font-weight: 600 !important;
}

/* Fix links spacing and style */
.navbar-nav .nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #131212 !important;
}

/* Ensure Apply button on the far right */
.desktop-apply {
  display: inline-block;
  background: linear-gradient(135deg, #f85a1b, #fda93f);
}

.mobile-apply {
  display: none;
  background: linear-gradient(135deg, #f85a1b, #fda93f);
  border-radius: 50px;
}

/* Hamburger only on mobile */
.hamburger {
  display: none;
}

/* === Responsive === */
@media (max-width: 991.98px) {
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  .navbar-menu {
    display: none;
    width: 100%;
    margin-top: 20px;
  }

  .navbar-menu.active {
    display: block;
    color: #f95f1d !important;
  }

  .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .desktop-apply {
    display: none;
    background: linear-gradient(135deg, #f85a1b, #fda93f);
  }

  .mobile-apply {
    display: block;
    width: 100%;
    margin-top: 10px;
  }

  .mobile-apply .btn-apply {
    width: 100%;
    text-align: center;
    background: #000 !important;
    color: #fff !important;
    border-radius: 50px;
  }
}

/* Wrapper Styles */
.navbar-wrapper {
  background-color: #f85a1b; /* ya gradient bhi kar sakte ho */
  background: linear-gradient(135deg, #f85a1b, #fda93f);
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 12px 24px;
  margin: 20px;
  position: sticky;
  /*top: 0;*/
  z-index: 999;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Brand */
.navbar-brand {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.5rem;
  text-decoration: none;
}

/* Nav Menu */
.navbar-menu {
  display: flex;
  align-items: center;
}

.navbar-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-nav li {
  margin-left: 20px;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
  color: var(--accent);
}

/* Buttons */
.btn-apply {
  color: #fff !important;
  border-radius: 8px;
  padding: 8px 18px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  background: #000 !important;
}

.btn-apply:hover {
  background: #222 !important;
  color: #fff !important;
}
.btn-apply:hover {
  background: #fff !important;
  color: #000 !important;
}

/* Hamburger Styles */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary);
  transition: 0.3s;
  border-radius: 2px;
}

/* Mobile Responsive */
@media (max-width: 991.98px) {
  .hamburger {
    display: flex;
  }

  .navbar-menu {
    display: none;
    width: 100%;
    margin-top: 20px;
  }

  .navbar-menu.active {
    display: block;
  }

  .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .navbar-nav li {
    margin: 0;
    width: 100%;
  }

  .navbar-nav .nav-link {
    display: block;
    width: 100%;
    padding: 8px 0;
  }

  .desktop-apply {
    display: none;
  }

  .mobile-apply {
    display: block;
    width: 100%;
  }

  .mobile-apply .btn-apply {
    width: 100%;
    text-align: center;
  }
}

@media (min-width: 992px) {
  .mobile-apply {
    display: none;
  }
}

/* Hero Section */
.hero-section {
  padding: 100px 0 80px;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.hero-text {
  flex: 1;
  min-width: 280px;
}

.hero-text h1 {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--primary);
}

.hero-text h2 {
  font-size: 1.5rem;
  color: var(--accent);
  margin-top: 10px;
}

.hero-text p {
  margin-top: 20px;
  font-size: 1.05rem;
  color: var(--dark);
}

.hero-buttons a {
  margin-right: 15px;
}

.hero-image {
  flex: 1;
  width: 100%;
  height: auto;
  min-height: 300px;
  border-radius: 16px;
  background-image: url("https://i.ibb.co/DHmvWb3k/First-section.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    padding: 60px 20px 50px;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text h2 {
    font-size: 1.25rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .hero-buttons a {
    margin-right: 0;
    width: 100%;
    max-width: 250px;
  }

  .hero-image {
    min-height: 200px;
    width: 100%;
  }
}

/* About Section */
.about-section {
  background: var(--light-gray);
  border-radius: 30px;
  padding: 60px;
  margin: 40px;
}

.about-images {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin-bottom: 30px;
}

.about-img-left {
  width: 100%;
  height: 300px;
  border-radius: 16px;
  background-image: url("https://i.ibb.co/KjB7xBvj/About-us.jpg");
  /* Replace with your actual image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.about-content h3 {
  font-weight: 700;
  font-size: 1.75rem;
  margin-bottom: 15px;
}

.about-content p {
  font-size: 1rem;
  color: var(--dark);
}

/* Responsive Styling */
@media (max-width: 768px) {
  .about-section {
    padding: 30px 20px;
    margin: 20px;
    border-radius: 20px;
  }

  .about-images {
    flex-direction: column;
  }

  .about-img-left,
  .about-img-right {
    width: 100%;
  }

  .about-img-left {
    height: 220px;
  }

  .about-img-top {
    height: 140px;
  }

  .about-img-bottom {
    height: 70px;
  }

  .about-content h3 {
    font-size: 1.5rem;
    text-align: center;
  }

  .about-content p {
    font-size: 0.95rem;
    text-align: center;
  }
}

/*faq Section*/
.jyp-faq-section {
  background-color: var(--light-gray);
  padding: 60px 20px;
}

.jyp-faq-container {
  max-width: 1000px;
  margin: auto;
}

.jyp-faq-heading {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 40px;
}

.jyp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.jyp-faq-item {
  background-color: var(--white);
  border-left: 4px solid var(--highlight);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.jyp-faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 18px 24px;
  font-size: 17px;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  position: relative;
}

.jyp-faq-question::after {
  content: "+";
  position: absolute;
  right: 24px;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.jyp-faq-item.active .jyp-faq-question::after {
  transform: rotate(45deg);
}

.jyp-faq-answer {
  padding: 0 24px 20px;
  font-size: 15px;
  color: #555;
  display: none;
  animation: fadeIn 0.3s ease;
}

.jyp-faq-item.active .jyp-faq-answer {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .jyp-faq-heading {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .jyp-faq-question {
    font-size: 16px;
  }

  .jyp-faq-answer {
    font-size: 14px;
  }
}

/*Our Mission Section Styles */
.mission-section {
  padding: 60px 15px;
}

.mission-box {
  background-color: #ffffff;
  border: 2px solid #e46428;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.mission-heading {
  color: #0d283f;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.mission-text {
  color: #1e1e1e;
  font-size: 1.125rem;
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .mission-box {
    padding: 1.5rem 1rem;
  }

  .mission-heading {
    font-size: 1.25rem;
  }

  .mission-text {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text h2 {
    font-size: 1.2rem;
  }

  .about-images {
    flex-direction: column;
  }

  .about-img-left,
  .about-img-right {
    width: 100%;
  }
}

/* JYP Section Styles */
.jyp-section {
  padding: 60px 15px;
}

.jyp-heading {
  color: #e46428;
}

.jyp-box {
  background: linear-gradient(135deg, #f25022, #ffc300);
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
  height: 100%;
}

.jyp-box:hover {
  border: 4px solid #fff;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.jyp-icon i {
  font-size: 3rem;
  color: #e46428;
  transition: color 0.3s ease;
}

.jyp-box:hover .jyp-icon i {
  color: #0d283f;
}

.jyp-step-title {
  color: #fff;
  font-size: 1.25rem;
}

.jyp-desc {
  color: #f8f8f5;
  font-size: 1rem;
  line-height: 1.6;
  padding: 0 10px;
}

/* Responsive */
@media (max-width: 767px) {
  .jyp-box {
    padding: 1.5rem 1rem;
  }

  .jyp-icon i {
    font-size: 2.2rem;
  }

  .jyp-step-title {
    font-size: 1.15rem;
  }

  .jyp-desc {
    font-size: 0.95rem;
  }
}

.text-accent {
  color: #e46428;
}

@media (max-width: 767.98px) {
  .container.p-5 {
    padding: 2rem 1rem !important;
  }

  h2 {
    font-size: 1.75rem;
  }

  h5 {
    font-size: 1.2rem;
  }

  .list-unstyled li {
    font-size: 0.95rem;
  }
}

/* Scoped Timeline Styling - Program Flow */
#program-flow-section .timeline {
  position: relative;
  padding-left: 30px;
}

#program-flow-section .timeline-block {
  position: relative;
}

#program-flow-section .timeline-dot {
  width: 14px;
  height: 14px;
  background-color: #e46428;
  border-radius: 50%;
  position: absolute;
  top: 5px;
  left: -7px;
}

#program-flow-section .timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 7px;
  width: 4px;
  background-color: #e46428;
  z-index: -1;
}

#program-flow-section .timeline-content {
  margin-left: 30px;
  padding-left: 10px;
}

/* Optional Accent Text Color */
.text-accent {
  color: #e46428;
}

/* Responsive Adjustments */
@media (max-width: 576px) {
  #program-flow-section .timeline {
    padding-left: 20px;
  }

  #program-flow-section .timeline-dot {
    width: 12px;
    height: 12px;
    left: -6px;
  }

  #program-flow-section .timeline-line {
    left: 6px;
  }

  #program-flow-section h2 {
    font-size: 1.6rem;
  }

  #program-flow-section h5 {
    font-size: 1.1rem;
  }
}

/*Notification Section*/
.jyp-notification-list-section {
  padding: 80px 40px;
  background-color: var(--light-gray);
}

.jyp-notification-container {
  max-width: 1200px;
  margin: 0 auto;
}

.jyp-section-heading {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
  color: var(--primary);
  font-weight: 600;
}

.jyp-notification-list-wrapper {
  display: flex;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 20px;
}

.jyp-notification-card {
  background-color: var(--white);
  border-left: 4px solid var(--highlight);
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border-radius: 8px;
  width: auto;
}

.jyp-notification-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.jyp-notification-card a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  font-size: 16px;
}

.jyp-notification-card span {
  display: block;
  font-size: 14px;
  margin-top: 8px;
  color: #777;
}

.jyp-notification-loadmore-wrapper {
  text-align: center;
  margin-top: 30px;
}

.jyp-loadmore-btn {
  background-color: var(--highlight);
  color: var(--white);
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s;
}

.jyp-loadmore-btn:hover {
  background-color: var(--accent);
}

@media (max-width: 480px) {
  .jyp-section-heading {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .jyp-notification-card a {
    font-size: 15px;
  }

  .jyp-loadmore-btn {
    width: 100%;
  }
}

/* CTA Section Styling */
.cta-section .cta-bg {
  background: linear-gradient(135deg, #f25022, #ffc300);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.cta-section h2 {
  font-size: 1.8rem;
  color: #fff;
}

.cta-section p {
  color: #fff;
  opacity: 0.95;
}

.btn-apply-now {
  background: #ffffff;
  color: #f25022;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  font-size: 1rem;
}

.btn-apply-now:hover {
  background: #fff3e0;
  color: #d84315;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .cta-section {
    padding: 30px;
  }

  .cta-section h2 {
    font-size: 1.5rem;
  }

  .cta-section p {
    font-size: 1rem;
  }

  .btn-apply-now {
    width: 100%;
    text-align: center;
  }
}

/* === ELIGIBILITY MODERN CARDS â€” UNIFORM RESPONSIVE === */

/* Card container */
.eligibility-gradient-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 30px 30px 30px;
  border-radius: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  color: #fff;
  height: 100%;
  text-align: left;
  transition: all 0.3s ease;
  overflow: hidden;
}

/* Backgrounds */
.eligibility-orange {
  background: linear-gradient(135deg, #f85a1b, #fda93f);
}

.eligibility-yellow {
  background: linear-gradient(135deg, #fda93f, #ffde7b);
}

/* Text block */
.eligibility-text {
  position: relative;
  z-index: 2;
  max-width: 60%;
}

/* Headline */
.eligibility-gradient-card h5 {
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #fff;
}

/* Description */
.eligibility-gradient-card p {
  font-size: 1rem;
  margin-bottom: 0;
  color: #fff;
}

/* Image container */
.eligibility-img {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  height: 100%;
  pointer-events: none;
}

.eligibility-icon-img {
  max-width: 160px;
  height: auto;
}

/* === Responsive Design â€” maintain layout === */
@media (max-width: 991px) {
  .eligibility-text {
    max-width: 100%;
  }

  .eligibility-icon-img {
    max-width: 130px;
  }
}

@media (max-width: 767px) {
  .eligibility-gradient-card {
    padding: 30px 20px 100px;
  }

  .eligibility-text {
    max-width: 100%;
    text-align: left;
  }

  .eligibility-img {
    right: 0;
    transform: none;
  }

  .eligibility-icon-img {
    max-width: 100px;
  }
}

@media (max-width: 480px) {
  .eligibility-gradient-card {
    padding: 25px 15px 90px;
    border-radius: 20px;
  }

  .eligibility-icon-img {
    max-width: 85px;
  }
}

/* Footer Styling */
.custom-footer {
  background: linear-gradient(135deg, #f85a1b, #fda93f);
  color: #f1f1f1;
  font-size: 0.95rem;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  box-shadow: 0 -2px 25px rgba(0, 0, 0, 0.2);
}

.custom-footer h5,
.custom-footer h6 {
  color: #fff;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #fefefe;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #eee;
  text-decoration: underline;
}

.footer-icon {
  color: #ffffff;
  transition: all 0.3s ease;
}

.footer-icon:hover {
  color: #171717;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .custom-footer .row > div:last-child {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .custom-footer .d-flex.gap-3.fs-5 {
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
  }

  .custom-footer {
    text-align: center;
  }

  .custom-footer .row > div {
    padding-bottom: 1rem;
  }

  .footer-icon {
    font-size: 1.3rem;
  }
}

/*Notification Slider Top*/
.jyp-notification-slider {
  width: 100%;
  background-color: #fff8f8;
  border-bottom: 2px solid linear-gradient(135deg, #f85a1b, #fda93f);
  overflow: hidden;
  position: relative;
}

.jyp-notification-track {
  display: flex;
  white-space: nowrap;
  will-change: transform;
}

.jyp-notification-item {
  background: #f58220 !important;
  color: #ffffff !important;
  flex: 0 0 auto;
  padding: 12px 40px;
  font-size: 16px;
  border-right: 1px solid #e1e1e1;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition:
    background 0.3s,
    color 0.3s;
}

.jyp-notification-item:hover {
  background: linear-gradient(135deg, #f85a1b, #fda93f) !important;
  color: #fff !important;
}

@keyframes jyp-scroll-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@media (max-width: 768px) {
  .jyp-notification-item {
    font-size: 14px;
    padding: 10px 25px;
  }
}

@media (max-width: 480px) {
  .jyp-notification-item {
    font-size: 13px;
    padding: 8px 18px;
  }
}

/* === Program Flow Section: side image layout === */
#program-flow-section .program-flow-layout {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 420px);
  gap: 24px;
  align-items: start;
}

/* Image container */
#program-flow-section .timeline-side-image {
  display: block;
}

#program-flow-section .timeline-side-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  object-fit: cover;
  aspect-ratio: 9 / 16;
}

/* Responsive: stack on tablets & phones */
@media (max-width: 991.98px) {
  #program-flow-section .program-flow-layout {
    grid-template-columns: 1fr;
  }

  #program-flow-section .timeline-side-image {
    margin-top: 16px;
  }
}

/* On very small phones */
@media (max-width: 420px) {
  #program-flow-section .timeline-side-image img {
    aspect-ratio: auto;
  }
}

/* Scoped styles only for JYP 2025-26 section */
.jyp2025-26-section {
  background: #f7f7fb;
  padding: clamp(20px, 4vw, 48px) 16px;
}

.jyp2025-26-container {
  max-width: 1200px;
  margin: 0 auto;
}

.jyp2025-26-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(18, 38, 63, 0.08);
  padding: clamp(18px, 3.2vw, 36px);
}

.jyp2025-26-head h2 {
  font-size: 22px;
  line-height: 1.15;
  margin: 0 0 6px 0;
  color: #2d2f31;
  letter-spacing: -0.02em;
}

.jyp2025-26-sub {
  margin: 0 0 18px 0;
  font-size: clamp(14px, 1.6vw, 16px);
  color: #6f7782;
}

.jyp2025-26-list {
  list-style: none;
  counter-reset: jyp2025-26-counter;
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
}

.jyp2025-26-list li {
  counter-increment: jyp2025-26-counter;
  background: #fff;
  border: 1px solid #f1f2f6;
  padding: 14px 14px 14px 58px;
  border-radius: 16px;
  color: #2d2f31;
  line-height: 1.55;
  position: relative;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.jyp2025-26-list li::before {
  content: counter(jyp2025-26-counter);
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #fff;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff8a00, #ff5a00);
  box-shadow: 0 6px 18px rgba(255, 125, 46, 0.25);
}

.jyp2025-26-list li:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(18, 38, 63, 0.1);
  border-color: #f0efe9;
}

.jyp2025-26-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.jyp2025-26-btn,
.jyp2025-26-btn-outline {
  font-weight: 600;
  border-radius: 14px;
  padding: 12px 18px;
  text-decoration: none;
  display: inline-block;
  line-height: 1;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease;
}

.jyp2025-26-btn {
  color: #fff;
  background: linear-gradient(135deg, #ff8a00, #ff5a00);
  box-shadow: 0 10px 20px rgba(255, 125, 46, 0.25);
}

.jyp2025-26-btn:hover {
  transform: translateY(-1px);
}

.jyp2025-26-btn-outline {
  color: #2d2f31;
  background: #fff;
  border: 1.5px solid #dfe3e8;
}

.jyp2025-26-btn-outline:hover {
  border-color: #cfd6dd;
}

/* Responsive tweaks */
@media (min-width: 768px) {
  .jyp2025-26-list {
    gap: 16px;
  }

  .jyp2025-26-list li {
    padding: 16px 18px 16px 62px;
  }

  .jyp2025-26-list li::before {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }
}

@media (min-width: 1024px) {
  .jyp2025-26-card {
    padding: 40px;
  }
}

/* - - - - New Popup Ui - - - -*/
/* Reset */
#jyp-popup * {
  display: none;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Overlay */
#jyp-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999;
}

/* Overlay2 */
#jyp-popup-2 {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Popup Container â€” LEFT orange, RIGHT white (side by side) */
#jyp-popup-container {
  background: #ffffff;
  width: 70%;
  max-width: 700px;
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  animation: slideUp 0.4s ease-out;
}

/* Popup Container-2 */
#jyp-popup-container-2 {
  background: #ffffff;
  width: 70%;
  max-width: 300px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Close Button */
#jyp-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 26px;
  height: 26px;
  margin-bottom: 5px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Close Button-2 */
#jyp-close-btn-2 {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

#jyp-close-btn:hover {
  transform: rotate(90deg);
}

/* Left Section */
#jyp-left-section {
  padding: 50px 40px;
  background: linear-gradient(135deg, #f85a1b 0%, #fda93f 100%);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Right Section */
#jyp-right-section {
  padding: 50px 40px;
  background: #fafafa;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Shared Content */
.jyp-icon {
  font-size: 42px;
  margin-bottom: 20px;
}

.jyp-heading {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 38px;
  line-height: 1.3;
  color: #ffffff;
}

.jyp-text {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 32px;
  opacity: 0.95;
}

#jyp-right-text {
  color: #666;
  opacity: 1;
}

/* Buttons */
#jyp-register-btn,
#jyp-quiz-btn {
  display: inline-block;
  padding: 7px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 10px;
  text-decoration: none;
  transition: 0.3s ease;
  align-self: flex-start;
  margin-top: 20px;
}

#jyp-register-btn {
  background: #ffffff;
  color: #f85a1b;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

#jyp-register-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

#jyp-quiz-btn {
  background: linear-gradient(135deg, #4caf50 0%, #2e9e48 100%);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.35);
}

#jyp-quiz-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.45);
}

/* Mobile â€” stack top-bottom again on small screens */
@media (max-width: 768px) {
  #jyp-popup-container {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  #jyp-left-section,
  #jyp-right-section {
    padding: 40px 30px;
    text-align: center;
  }

  #jyp-register-btn,
  #jyp-quiz-btn {
    align-self: center;
  }

  .jyp-heading {
    font-size: 22px;
  }
}

/* Fade out */
@keyframes fadeOut {
  to {
    opacity: 0;
    transform: scale(0.95);
  }
}

/* ===== MOBILE FIX : WHAT'S NEW / NOTIFICATION CARDS ===== */
@media (max-width: 768px) {
  /* Section padding */
  .jyp-notification-list-section {
    padding: 50px 16px;
  }

  /* Stack cards vertically */
  .jyp-notification-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  /* Card full width */
  .jyp-notification-card {
    width: 100%;
    padding: 16px 14px;
    border-radius: 10px;
  }

  /* Text sizing */
  .jyp-notification-card a,
  .jyp-notification-card .no-link-text {
    font-size: 15px;
    line-height: 1.45;
    display: block;
  }

  /* Date spacing */
  .jyp-notification-card span {
    font-size: 13px;
    margin-top: 6px;
  }
}

.header2 {
  background: #f6a258 !important;
}

.jyp-table-container {
  font-family: "Montserrat", sans-serif;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  color: var(--jyp-text);
}

.section-heading {
  font-weight: 800;
  font-size: 2.2rem;
  margin-bottom: 30px;
  text-transform: uppercase;
  border-left: 10px solid var(--jyp-orange);
  padding-left: 15px;
}

.jyp-grid {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 50px;
  background-color: #fff;
  border: 2px solid var(--jyp-orange);
}

/* All Header backgrounds set to Orange */
.jyp-grid th {
  background-color: var(--jyp-orange);
  color: #ffffff;
  padding: 15px 20px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  border: 1px solid #ffffff;
  text-align: center;
}

.jyp-grid td {
  padding: 15px 20px;
  border: 1px solid var(--line-color);
  font-size: 0.95rem;
  line-height: 1.5;
}

.agenda-col {
  font-weight: 500;
  text-align: left;
  background-color: #fdfdfd;
  width: 40%;
}

.data-col {
  text-align: center;
  font-weight: 600;
}

/* Group specific styling for the small groups table */
.group-info {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  margin-top: 4px;
  opacity: 0.9;
}

.jyp-grid tr:nth-child(even) {
  background-color: #fafafa;
}

.jyp-grid tr:hover {
  background-color: #fff8f4;
}

@media (max-width: 768px) {
  .jyp-table-container {
    padding: 10px;
  }

  .jyp-grid {
    display: block;
    overflow-x: auto;
  }

  .section-heading {
    font-size: 1.6rem;
  }
}

/* ============================================================
   JYP GALLERY PAGE — gallery.css
   All selectors prefixed with #jyp-gallery to avoid conflicts
   ============================================================ */

#jyp-gallery * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Page Wrapper ── */
#jyp-gallery {
  min-height: 100vh;
  background: #f4f4f4;
  padding: 60px 20px 80px;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "Kohinoor Devanagari",
    "Hind", Arial, sans-serif;
}

/* ── Hero Header ── */
#jyp-gallery .jyp-gl-hero {
  text-align: center;
  margin-bottom: 48px;
}

#jyp-gallery .jyp-gl-hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, #f85a1b, #fda93f);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
}

/* #jyp-gallery .jyp-gl-hero h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: #111;
  line-height: 1.1;
  letter-spacing: -1px;
} */

#jyp-gallery .jyp-gl-hero h1 {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--primary);
}

#jyp-gallery .jyp-gl-hero p {
  margin-top: 14px;
  color: #666;
  font-size: 1rem;
  font-weight: 500;
}

/* ── Tabs ── */
#jyp-gallery .jyp-gl-tabs-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 44px;
}

#jyp-gallery .jyp-gl-tabs {
  display: inline-flex;
  background: #fff;
  border-radius: 50px;
  padding: 6px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  gap: 4px;
}

#jyp-gallery .jyp-gl-tab-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  border-radius: 50px;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  color: #888;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

#jyp-gallery .jyp-gl-tab-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

#jyp-gallery .jyp-gl-tab-btn:hover {
  color: #f85a1b;
}

#jyp-gallery .jyp-gl-tab-btn.jyp-gl-active {
  background: linear-gradient(135deg, #f85a1b, #fda93f);
  color: #fff;
  box-shadow: 0 6px 20px rgba(248, 90, 27, 0.35);
}

/* ── Tab Panels ── */
#jyp-gallery .jyp-gl-panel {
  display: none;
  animation: jypGlFadeUp 0.45s ease both;
}

#jyp-gallery .jyp-gl-panel.jyp-gl-active {
  display: block;
}

@keyframes jypGlFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ══════════════════════════════════════════
   PINTEREST-STYLE MASONRY
   ══════════════════════════════════════════ */
#jyp-gallery .jyp-gl-grid {
  columns: 4;
  column-gap: 14px;
  max-width: 1300px;
  margin: 0 auto;
}

#jyp-gallery .jyp-gl-photo-item {
  break-inside: avoid;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  cursor: pointer;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.09);
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease;
  display: block;
}

#jyp-gallery .jyp-gl-photo-item:hover {
  transform: translateY(-5px) scale(1.012);
  box-shadow: 0 18px 44px rgba(248, 90, 27, 0.2);
}

/* ── NATURAL HEIGHT — image decides its own height (Pinterest style) ── */
#jyp-gallery .jyp-gl-photo-item img {
  width: 100%;
  height: auto; /* ← NO fixed height, no cropping */
  display: block;
  border-radius: 18px;
  transition: transform 0.45s ease;
}

#jyp-gallery .jyp-gl-photo-item:hover img {
  transform: scale(1.04);
}

/* ── Hover Overlay ── */
#jyp-gallery .jyp-gl-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(248, 90, 27, 0.72) 0%,
    rgba(253, 169, 63, 0.18) 55%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.32s ease;
  border-radius: 18px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
}

#jyp-gallery .jyp-gl-photo-item:hover .jyp-gl-photo-overlay {
  opacity: 1;
}

#jyp-gallery .jyp-gl-photo-overlay span {
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.22);
  padding: 4px 14px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
}

/* ── Videos Grid ── */
#jyp-gallery .jyp-gl-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
}

#jyp-gallery .jyp-gl-video-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

#jyp-gallery .jyp-gl-video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(248, 90, 27, 0.18);
}

#jyp-gallery .jyp-gl-video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #111;
}

#jyp-gallery .jyp-gl-video-embed iframe,
#jyp-gallery .jyp-gl-video-embed video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

#jyp-gallery .jyp-gl-video-info {
  padding: 16px 20px 20px;
}

#jyp-gallery .jyp-gl-video-info h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111;
  line-height: 1.4;
  margin-bottom: 6px;
}

#jyp-gallery .jyp-gl-video-info p {
  font-size: 0.82rem;
  color: #999;
  font-weight: 500;
}

#jyp-gallery .jyp-gl-video-tag {
  display: inline-block;
  background: linear-gradient(135deg, #f85a1b, #fda93f);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 8px;
}

/* ── Lightbox ── */
#jyp-gl-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.93);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(8px);
}

#jyp-gl-lightbox.jyp-gl-open {
  display: flex;
  animation: jypGlLbFade 0.3s ease;
}

@keyframes jypGlLbFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

#jyp-gl-lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  animation: jypGlLbScale 0.32s ease;
}

@keyframes jypGlLbScale {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

#jyp-gl-lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: linear-gradient(135deg, #f85a1b, #fda93f);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.3rem;
  color: #fff;
  font-weight: 700;
  transition: transform 0.2s;
}

#jyp-gl-lightbox-close:hover {
  transform: scale(1.12);
}

#jyp-gl-lightbox-prev,
#jyp-gl-lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  font-size: 1.5rem;
  transition:
    background 0.2s,
    border-color 0.2s;
  backdrop-filter: blur(4px);
}

#jyp-gl-lightbox-prev {
  left: 20px;
}
#jyp-gl-lightbox-next {
  right: 20px;
}

#jyp-gl-lightbox-prev:hover,
#jyp-gl-lightbox-next:hover {
  background: linear-gradient(135deg, #f85a1b, #fda93f);
  border-color: transparent;
}

/* ── Responsive ── */
@media (max-width: 1200px) {
  #jyp-gallery .jyp-gl-grid {
    columns: 3;
  }
}

@media (max-width: 768px) {
  #jyp-gallery {
    padding: 40px 10px 60px;
  }
  #jyp-gallery .jyp-gl-grid {
    columns: 2;
    column-gap: 10px;
  }
  #jyp-gallery .jyp-gl-photo-item {
    margin-bottom: 10px;
  }
  #jyp-gallery .jyp-gl-video-grid {
    grid-template-columns: 1fr;
  }
  #jyp-gallery .jyp-gl-tab-btn {
    padding: 10px 22px;
    font-size: 0.88rem;
  }
}

@media (max-width: 420px) {
  #jyp-gallery .jyp-gl-grid {
    columns: 2;
    column-gap: 8px;
  }
  #jyp-gallery .jyp-gl-photo-item {
    margin-bottom: 8px;
    border-radius: 12px;
  }
  #jyp-gallery .jyp-gl-photo-item img {
    border-radius: 12px;
  }
  #jyp-gallery .jyp-gl-tab-btn span.jyp-gl-tab-label {
    display: none;
  }
  #jyp-gallery .jyp-gl-tab-btn {
    padding: 10px 16px;
  }
  #jyp-gl-lightbox-prev {
    left: 6px;
  }
  #jyp-gl-lightbox-next {
    right: 6px;
  }
}
